home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / BTNMFC.PAK / BTNPPG.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  42 lines

  1. // btnppg.h : Declaration of the CButtonPropPage property page class.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. ////////////////////////////////////////////////////////////////////////////
  14. // CButtonPropPage : See btnppg.cpp for implementation.
  15.  
  16. class CButtonPropPage : public COlePropertyPage
  17. {
  18.     DECLARE_DYNCREATE(CButtonPropPage)
  19.     DECLARE_OLECREATE_EX(CButtonPropPage)
  20.  
  21. // Constructor
  22. public:
  23.     CButtonPropPage();
  24.  
  25. // Dialog Data
  26.     //{{AFX_DATA(CButtonPropPage)
  27.     enum { IDD = IDD_PROPPAGE_BUTTON };
  28.     CString m_Caption;
  29.     //}}AFX_DATA
  30.  
  31. // Implementation
  32. protected:
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.  
  35. // Message maps
  36. protected:
  37.     //{{AFX_MSG(CButtonPropPage)
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40.  
  41. };
  42.